/* Sticky WhatsApp Button */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;  /* WhatsApp color */
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

#whatsapp-button:hover {
    transform: scale(1.1);
}

#whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-text {
    margin-left: 10px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: none;
}

#whatsapp-button:hover .whatsapp-text {
    display: block;
}

#whatsapp-button svg {
    width: 50px;
    height: 50px;
    fill: white;
    transition: fill 0.3s;
}

#whatsapp-button:hover svg {
    fill: #075E54;  /* Darker green on hover */
}
